home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / applications / 1870 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.4 KB

  1. Path: amtrash.comlink.de!DIGGER
  2. From: DIGGER@AMTRASH.comlink.de (Stephan Grochowina)
  3. Newsgroups: comp.sys.amiga.applications
  4. Subject: Re: Commodore-64
  5. Date: 11 Feb 96 16:31:34 +0100
  6. Message-ID: <2211DAE6H000CB8E2H@digger.amtrash.comlink.de>
  7. References: <1996Jan31.154620.1@animal> <883.6604T1433T1932@sunshine.net>
  8. X-Mailer: -- The Answer V3.05
  9. X-Gateway: ZCONNECT UH amtrash.comlink.de [UUCPfZ V5.65 U035]
  10.  
  11. Hi folks,
  12.  
  13. it was Fr 02.02.1996 around 18:35:54, when sn0077@sunshine.net of sunshine
  14. abused his keyboard through trying to write about "Re^1:Commodore-64":
  15.  
  16.  
  17. sn>
  18. sn>>LOAD "filename", 8
  19. sn>
  20. sn>>-> Ready
  21. sn>
  22. sn>>What do I do next? All my next attempts wind up as either "Syntax error" or
  23. sn>>"Please press play on tape"
  24. sn>
  25. sn>if i remember correctly, and its been years and years, the correct syntax is:
  26. sn>LOAD "filename",8,#  (where # is the drive ie:1 or 2)
  27. sn> but as i say its been years.
  28. sn>
  29. sn>Howard
  30. sn>
  31. sn>
  32. That's not exactly true. 8 is the logical channel for the floppy (also 9 to 12
  33. (I think 12 was the last possible channel)). LOAD "filename",8 means
  34. the same as LOAD "filename",8,0 which can be used for loading BASIC
  35. programs. If you wish to load autostart-programs or machine coded ones
  36. you may use LOAD "filename",8,1 and after loading is completed RUN (if
  37. it's not an autostart-program, of course). If you want to load
  38. from drive 2 you may use LOAD "filename",9[,1] and so on.
  39.  
  40.  
  41.